Contents | Index | < Browse | Browse >
LETTERstrncatULETTER
Concatenates strings, length-limited.
Overview
#include <string.h>
r = strncat(s,t,n);
char *r;
char *s;
char *t;
size_t n;
Portability
ANSI
Description
This function appends the string "t" to the string "s". Its difference from
strcat is that it appends max. "n" characters.
Returns
A pointer to "s".
See also
strcat